<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="FooterControl.ascx.cs"
Inherits="YourNamespace.FooterControl" %>
<div style="background-color: #f1f1f1; text-align: center; padding: 10px; position: relative; bottom: 0;
width: 100%;">
<p>© Company Name</p>
</div>
using System;
namespace YourNamespace
{
public partial class FooterControl : System.Web.UI.UserControl
{
protected void Page_Load(object sender, EventArgs e)
{
// Any initialization code can go here if needed
}
}
}